home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 November: Tool Chest / Dev.CD Nov 98 TC.toast / What's New? / Development Kits / USBDDK_v1.0.1_updated / Examples / PrinterClassDriver / ChooserPACK.a < prev    next >
Encoding:
Text File  |  1998-09-29  |  353 b   |  19 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        ChooserPACK.a
  3. ;    Contains:    Creates initial jump point in pack code
  4. ;
  5. ;
  6.         BLANKS    ON
  7.         STRING    ASIS
  8.  
  9. main    PROC     EXPORT
  10.  
  11. ;-------------------------------------------------------------------------------
  12.         IMPORT  Chooser
  13.         JMP     Chooser
  14.  
  15. ;-------------------------------------------------------------------------------
  16.  
  17.         END 
  18.  
  19.